home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / t_os / tool / dc15 / list.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-16  |  604 b   |  23 lines

  1. #include "para.h"
  2.  
  3. #define    ERR        (-1)
  4. #define    ALL_ATTRIBUTE    (-1)
  5.  
  6. typedef    struct _list{
  7.         struct _list * next;            /* 次へのpointer     */
  8.         char        file[13];            /* file name        */
  9.         long int    size;                /* file size        */
  10.         unsigned short int wr_time;        /* file    time        */
  11.         unsigned short int wr_date;        /* file    date        */
  12.         int        flag;                    /* 各種フラグ        */
  13.         int        line;                    /* 行数                */
  14.         int        sline;                    /* 分割ファイル内での始めのライン    */
  15.         int        rsize;                    /* 目次注釈こみのサイズ */
  16.         char    *bf    ;                    /* TextBuffer        */
  17. } LIST;
  18.  
  19.  
  20. int ClearFlag(void);
  21. int SetFlag(int size);
  22. int MakeList(PARA inf);
  23.